home *** CD-ROM | disk | FTP | other *** search
- /*
- SillyMUD Distribution V1.1b (c) 1993 SillyMUD Developement
-
- See license.doc for distribution terms. SillyMUD is based on DIKUMUD
- */
-
- struct foo_data {
- char *line;
- };
-
- struct scripts {
- char *filename; /* Script name to execute */
- int virtual; /* Virtual number of the mob associated with the script */
- struct foo_data *script; /* actual script */
- } *script_data;
-
- struct script_com {
- void (*p) (char *arg, struct char_data *ch);
- char *arg;
- } *comp;
-
-
-